home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat1 / poly.1 < prev    next >
Text File  |  1999-09-16  |  949b  |  67 lines

  1.  
  2.  
  3.  
  4. poly(1)                        Scilab Function                        poly(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   poly - polynomial definition
  13.  
  14. CALLING SEQUENCE
  15.   [p]=poly(a,"x", ["flag"])
  16.  
  17. PARAMETERS
  18.  
  19.   a         : matrix or real number
  20.  
  21.   x         : symbolic variable
  22.  
  23.   "flag"    : string ("roots", "coeff")
  24.  
  25. DESCRIPTION
  26.   If a is a matrix, p is the characteristic polynomial i.e.
  27.    determinant(x*eye-a), x being the symbolic variable.
  28.  
  29.   If v  is a vector, poly(v,"x",["roots"])  is the polynomial with roots the
  30.   entries of v and "x" as formal variable.  (In this case,  roots and   poly
  31.   are inverse functions).
  32.  
  33.   poly(v,"x","coeff") creates the polynomial with symbol "x" and with coeffi-
  34.   cients the entries of v. (Here poly and coeff are inverse functions).
  35.  
  36.   s=poly(0,"s") is the seed for defining polynomials with symbol "s".
  37.  
  38. EXAMPLE
  39.   s=poly(0,"s");p=1+s+2*s^2;
  40.   A=rand(2,2);poly(A,"x")
  41.  
  42. SEE ALSO
  43.   coeff, matrices, rational
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.